| Description | Command |
|---|---|
| Start a new session with session name | screen -S <session_name> |
| List running sessions / screens | screen -ls |
| Attach to a running session | screen -x |
| Attach to a running session with name | screen -r |
Discover gists
| /* | |
| This CSS allows the Jetbrains/Intellij Markdown Preview to closely match the appearance of Markdown | |
| documentation as viewed on GitHub. | |
| Both the light GitHub theme and the dark theme are included here, although only the light theme works by | |
| default. The dark theme is deactivated with an as-yet-unsupported "@media (prefers-color-scheme: dark)" | |
| media query. Simply delete and/or comment out the light theme colors below, and then remove the enclosing | |
| media query from the dark theme colors, in order to use those colors instead. | |
| Color matching GitHub's syntax coloring inside code fences remains a problem. The Jetbrains preview |
This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.
Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.
This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.
Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.
You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.
To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.
To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
- Accept a quest under Discover -> Quests
- Press Ctrl+Shift+I to open DevTools
- Go to the
Consoletab - Paste the following code and hit enter:
Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:
Up Arrow: Will show your last commandDown Arrow: Will show your next commandTab: Will auto-complete your commandCtrl + L: Will clear the screen
| #!/bin/bash | |
| # Set defaults | |
| FIX_ME="true" | |
| PLAIN_MODE="false" | |
| SILENT_MODE="false" | |
| ENABLE_LFS_CHECK="false" | |
| VERSION_INFO="1.14.0" | |
| # Print pass message |